home *** CD-ROM | disk | FTP | other *** search
-
- !--- This example shows the use of CFMAILPARAM --->
- <HTML>
- <HEAD>
- <TITLE>CFMAILPARAM Example</TITLE>
- </HEAD>
-
- <BASEFONT FACE="Arial, Helvetica" SIZE=2>
- <BODY bgcolor="#FFFFD5">
-
- <H3>CFMAILPARAM Example</H3>
-
- <P>
- This read-only example uses CFMAILPARAM to attach two files and add a header to a message.
- Note that you must specify the server for sending dynamic SMTP mail messages in the
- ColdFuion Administrator before you can send mail. This can be an Internet address
- (e.g., mail.<i>company-name</i>.com) or the IP address of the mail server (e.g., 127.0.0.1).
- </P>
- <!-------------------------------------------------------------------------------
- <CFMAIL FROM="mnorvath@allaire.com" To="msandstrom@allaire.com" Subject="See Important Attachments and Reply">
- <CFMAILPARAM NAME="Reply-To" VALUE="mnorvath@allaire.com">
- Please read the text file and view the new logo, and let us know what
- you think.
- <CFMAILPARAM FILE="c:\work\readme.txt">
- <CFMAILPARAM FILE="c:\work\logo.gif">
- </CFMAIL>
- ------------------------------------------------------------------------------->
- </BODY>
- </HTML>